type net/http.http2responseWriterState

12 uses

	net/http (current package)
		h2_bundle.go#L3883: 		rws := &http2responseWriterState{}
		h2_bundle.go#L6103: 	rws := http2responseWriterStatePool.Get().(*http2responseWriterState)
		h2_bundle.go#L6105: 	*rws = http2responseWriterState{} // zero all the fields
		h2_bundle.go#L6350: 	rws *http2responseWriterState
		h2_bundle.go#L6360: type http2responseWriterState struct {
		h2_bundle.go#L6386: type http2chunkWriter struct{ rws *http2responseWriterState }
		h2_bundle.go#L6398: func (rws *http2responseWriterState) hasTrailers() bool { return len(rws.trailers) > 0 }
		h2_bundle.go#L6400: func (rws *http2responseWriterState) hasNonemptyTrailers() bool {
		h2_bundle.go#L6412: func (rws *http2responseWriterState) declareTrailer(k string) {
		h2_bundle.go#L6430: func (rws *http2responseWriterState) writeChunk(p []byte) (n int, err error) {
		h2_bundle.go#L6574: func (rws *http2responseWriterState) promoteUndeclaredTrailers() {
		h2_bundle.go#L6728: func (rws *http2responseWriterState) writeHeader(code int) {